home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d4 / cardfil.arc / CARDFILE.DOC < prev    next >
Text File  |  1988-01-13  |  3KB  |  78 lines

  1. CARDFILE
  2. Command
  3. Jeff Prosise          1987/No. 17 (Utilities)
  4.  
  5. Purpose:    Combines a database of names, addresses, phone
  6. numbers, and memo-IDs with a Hayes-compatible autodialer.
  7.  
  8. Format:    CARDFILE [d:][filespec]
  9.  
  10. Remarks:    CARDFILE is normally loaded with a specific database
  11. (filespec) by being listed as a line in your AUTOEXEC.BAT file.  You
  12. can swith to another database by repeating the command with a
  13. different filespec at the DOS prompt.     The Alt-Right Shift key
  14. combination pops up the CARDFILE window, and Esc returns you to your
  15. application.  Within the window, the Function keys are assigned thus:
  16.  
  17.          F1 - Begin/save a new or edited card
  18.          F2 - Edit the card currently displayed
  19.          F3 - Delete the card currently displayed
  20.          F4 - Search all cards for a text string
  21.          F5 - Save datafile to disk
  22.          F6 - Dial the phone number currently displayed
  23.  
  24.     All card data entry and editing is done in overstrike mode. 
  25. The backspace key deletes the previous character and the four cursor
  26. keys can position the cursor anywhere in the record area.  Enter
  27. moves the cursor to the start of the next line.      You can page
  28. through all of the cards with the PgUp, PgDn, and Enter keys.  The
  29. HOME and END keys let you jump quickly to the first or last card,
  30. respectively.  
  31.  
  32.     To search the database, press F4 and enter    a text string. 
  33. Pressing Enter resumes the search (which is not case-sensitive) after
  34. a match; Esc cancels the search.  An alternate way to find a name
  35. quickly is to press Alt and a letter key.  To find "Smith," for
  36. example, hit Alt-S, then use PgDn or Enter to skip past "Sagamore" and
  37. "Siddhartha."
  38.  
  39.     When used with Hayes-compatible modems, F6 dials the number
  40. currently displayed.  At the prompt, pick up the phone and press the
  41. Spacebar to break the modem connection.  The CARDFILE autodialer
  42. ignores all non-numeric characters except the comma, which inserts the
  43. pause sometimes needed to access an outside line.
  44.  
  45.     Because CARDFILE is a memory-resident program, it must assume
  46. rather than change the modem parameters.  By default,    CARDFILE is
  47. initially configured for a 1200-baud  modem connected to the
  48. COM1.  Using DEBUG you can change the value at :0182 from 0 to 1 to
  49. change from COM1 to COM2, to 2 for COM3, etc.  Similarly, to change to
  50. a different baud (bps) rate, change the value at :0184h from the
  51. default  83h, as follows:
  52.  
  53.          300 baud    43h
  54.         1200 baud    83h
  55.         2400 baud    A3h
  56.         4800 baud    C3h
  57.         9600 baud    E3h
  58.     
  59.     The "ATDT" (dial) and "ATH0" (hangup) strings are at addresses
  60. :0185h and :018Ah, respectively.  While they can be changed
  61. (especially substituting a "P", ASCII 80 for the "T" in the dialing
  62. command, note that each sequence must be 4 bytes long.  The dial
  63. string must be delimited by a zero byte, and the hangup string must
  64. end with 0Dh and 00.
  65.  
  66.     To save memory, the card capacity may be lowered from the
  67. default 255 (FFh) at :0169.  Each record takes 192 bytes.  And if the
  68. Alt-Right Shift "hot key" conflicts with other software, change the
  69.  default value 09 at address :036A to a combination of the following:
  70.  
  71.         Right-Shift    1
  72.         Left-Shift    2
  73.         Ctrl    4
  74.         Alt    8
  75.  
  76.     Note:  While CARDFILE will operate under DOS 2.x, its critical
  77.  error handler is only fully effective with DOS 3.x.
  78.